GET api/AddressTypes?Division={Division}&usages[0]={usages[0]}&usages[1]={usages[1]}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Division | integer |
Required |
|
| usages | Collection of integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of AddressType| Name | Description | Type | Additional information |
|---|---|---|---|
| ATYPE_ID | integer |
None. |
|
| TYPE_NAME | string |
None. |
|
| USAGE | integer |
None. |
|
| DIV_ID | integer |
None. |
|
| OLD | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ATYPE_ID": 1,
"TYPE_NAME": "sample string 2",
"USAGE": 1,
"DIV_ID": 3,
"OLD": 1
},
{
"ATYPE_ID": 1,
"TYPE_NAME": "sample string 2",
"USAGE": 1,
"DIV_ID": 3,
"OLD": 1
}
]
application/octet-stream
Sample:
[{"ATYPE_ID":1,"TYPE_NAME":"sample string 2","USAGE":1,"DIV_ID":3,"OLD":1},{"ATYPE_ID":1,"TYPE_NAME":"sample string 2","USAGE":1,"DIV_ID":3,"OLD":1}]
application/xml, text/xml
Sample:
<ArrayOfAddressType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AddressType>
<ATYPE_ID>1</ATYPE_ID>
<TYPE_NAME>sample string 2</TYPE_NAME>
<USAGE>1</USAGE>
<DIV_ID>3</DIV_ID>
<OLD>1</OLD>
</AddressType>
<AddressType>
<ATYPE_ID>1</ATYPE_ID>
<TYPE_NAME>sample string 2</TYPE_NAME>
<USAGE>1</USAGE>
<DIV_ID>3</DIV_ID>
<OLD>1</OLD>
</AddressType>
</ArrayOfAddressType>